home *** CD-ROM | disk | FTP | other *** search
/ Micromanía: 150 Juegos 2010 / 150Juegos_16.iso / Shareware / Shape Smash / shape-smash.swf / scripts / mx / core / IDeferredInstantiationUIComponent.as < prev    next >
Encoding:
Text File  |  2010-05-14  |  780 b   |  27 lines

  1. package mx.core
  2. {
  3.    public interface IDeferredInstantiationUIComponent extends IUIComponent
  4.    {
  5.       function get descriptor() : UIComponentDescriptor;
  6.       
  7.       function createReferenceOnParentDocument(param1:IFlexDisplayObject) : void;
  8.       
  9.       function set descriptor(param1:UIComponentDescriptor) : void;
  10.       
  11.       function deleteReferenceOnParentDocument(param1:IFlexDisplayObject) : void;
  12.       
  13.       function executeBindings(param1:Boolean = false) : void;
  14.       
  15.       function get id() : String;
  16.       
  17.       function set cacheHeuristic(param1:Boolean) : void;
  18.       
  19.       function get cachePolicy() : String;
  20.       
  21.       function registerEffects(param1:Array) : void;
  22.       
  23.       function set id(param1:String) : void;
  24.    }
  25. }
  26.  
  27.